home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Developer Toolbox 6.1
/
SGI Developer Toolbox 6.1 - Disc 4.iso
/
src
/
swtools
/
DSOs
/
forum93
/
case2
/
caller.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-08-02
|
154 b
|
12 lines
int callee(int,int);
int foo[100];
void
caller(int x, int y) {
foo[0] = callee(x,y);
foo[1] = callee(x+1,y+1);
foo[2] = callee(x+2,y+2);
}